projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f21168f
)
(describe-prefix-bindings): Use let, not let*.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 16 Sep 2006 10:45:38 +0000
(10:45 +0000)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 16 Sep 2006 10:45:38 +0000
(10:45 +0000)
lisp/ChangeLog
patch
|
blob
|
history
lisp/help.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index 96e362a243c7a97b77702b1d61dbf7ae4d1f1c76..c4342057a6f4b4e438c1419050d7316bbd64b5c6 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,7
@@
+2006-09-16 Eli Zaretskii <eliz@gnu.org>
+
+ * help.el (describe-prefix-bindings): Use let, not let*.
+
2006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
* allout.el (allout-regexp, allout-line-boundary-regexp)
diff --git
a/lisp/help.el
b/lisp/help.el
index 073bdd3c81cab3917ed9a4b67e0cc021bb6e956d..bc101410bbdf2369927870ea511e73c1b3d1ecbf 100644
(file)
--- a/
lisp/help.el
+++ b/
lisp/help.el
@@
-309,7
+309,7
@@
If that doesn't give a function, return nil."
The prefix described consists of all but the last event
of the key sequence that ran this command."
(interactive)
- (let
*
((key (this-command-keys)))
+ (let ((key (this-command-keys)))
(describe-bindings
(if (stringp key)
(substring key 0 (1- (length key)))